projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24a31d5
)
(equalp): Use string-equal on strings.
author
Erik Naggum
<erik@naggum.no>
Fri, 8 Mar 1996 18:30:12 +0000
(18:30 +0000)
committer
Erik Naggum
<erik@naggum.no>
Fri, 8 Mar 1996 18:30:12 +0000
(18:30 +0000)
lisp/emacs-lisp/cl-extra.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/cl-extra.el
b/lisp/emacs-lisp/cl-extra.el
index a9201444b0d5e3168ce49c4fc46bd141576b7f11..6eadbdb4ca9d3195d28f89b79c32c0ecda2c7613 100644
(file)
--- a/
lisp/emacs-lisp/cl-extra.el
+++ b/
lisp/emacs-lisp/cl-extra.el
@@
-84,8
+84,8
@@
strings case-insensitively."
(cond ((eq x y) t)
((stringp x)
(and (stringp y) (= (length x) (length y))
- (or (equal x y)
- (equal (downcase x) (downcase y))))) ; lazy but simple!
+ (or (
string-
equal x y)
+ (
string-
equal (downcase x) (downcase y))))) ; lazy but simple!
((numberp x)
(and (numberp y) (= x y)))
((consp x)